Skip to content
Snippets Groups Projects

Fix bend_symlinks script for empty space

Merged Timm Fitschen requested to merge f-bend-symlinks-with-ws into dev
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -37,7 +37,7 @@ function escape_simple_path () {
SPATH=$(echo "$SPATH" | sed -r "s/\(/\\\\(/g")
# {
SPATH=$(echo "$SPATH" | sed -r "s/\{/\\\\{/g")
# \s
# white space
SPATH=$(echo "$SPATH" | sed -r "s/ /\\ /g")
echo "$SPATH"
}
Loading