diff options
author | Zach Brown <[email protected]> | 2019-08-10 09:59:43 -0500 |
---|---|---|
committer | Zach Brown <[email protected]> | 2019-08-10 09:59:43 -0500 |
commit | 9530f1bd01067c9ad44209709ea3b89fffe67bdf (patch) | |
tree | 3aa945f5f117d1b986df57dd3637deb0dd959b4f | |
parent | aa022fdaca8e4059ff89cb43a5be172f17937e65 (diff) | |
download | Paper-9530f1bd01067c9ad44209709ea3b89fffe67bdf.tar.gz Paper-9530f1bd01067c9ad44209709ea3b89fffe67bdf.zip |
[CI-SKIP] Fix regression with scripts in directories with spaces
Regression introduced with the ability to apply patches directly to
upstream patches in ef170ee659bcc902a129cb38981e378b17dc375a
-rwxr-xr-x | scripts/init.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/init.sh b/scripts/init.sh index 6aaaef5b46..fd96a3d1dd 100755 --- a/scripts/init.sh +++ b/scripts/init.sh @@ -18,7 +18,7 @@ fi # apply patches directly to the file tree # used to fix issues from upstream source repos -cd $basedir +cd "$basedir" prepatchesdir="$basedir/scripts/pre-source-patches" for file in $(ls $prepatchesdir) do |