Skip to content

Commit e54e170

Browse files
Strip dots from install folders, solves some 'no executables found' problems
1 parent b79085e commit e54e170

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appsrc/util/pathmaker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export function userDbPath (userId) {
9393
}
9494

9595
export function sanitize (file) {
96-
const sane = file.replace(/[^a-zA-Z0-9_. -]/g, '').replace(/[\s]+/, ' ')
96+
const sane = file.replace(/[^a-zA-Z0-9_ -]/g, '').replace(/[\s]+/, ' ')
9797
if (sane.length > 0) {
9898
return sane
9999
} else {

0 commit comments

Comments
 (0)