Skip to content

Commit d218ada

Browse files
committed
fix archive if repo path has spaces
1 parent 9bd8ad1 commit d218ada

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ brew:
4646
brew bump-formula-pr --url=$(RELEASE_TAR) XcodeGen
4747

4848
archive: build
49-
./scripts/archive.sh $(EXECUTABLE_PATH)
49+
./scripts/archive.sh "$(EXECUTABLE_PATH)"

scripts/archive.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LICENSE=LICENSE
1010
# copy
1111

1212
mkdir -p $BINDIR
13-
cp -f $1 $BINDIR
13+
cp -f "$1" $BINDIR
1414

1515
mkdir -p $SHAREDIR
1616
cp -R SettingPresets $SHAREDIR/SettingPresets

0 commit comments

Comments
 (0)