Skip to content

Commit

Permalink
fix archive if repo path has spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Feb 9, 2022
1 parent 9bd8ad1 commit d218ada
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ brew:
brew bump-formula-pr --url=$(RELEASE_TAR) XcodeGen

archive: build
./scripts/archive.sh $(EXECUTABLE_PATH)
./scripts/archive.sh "$(EXECUTABLE_PATH)"
2 changes: 1 addition & 1 deletion scripts/archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LICENSE=LICENSE
# copy

mkdir -p $BINDIR
cp -f $1 $BINDIR
cp -f "$1" $BINDIR

mkdir -p $SHAREDIR
cp -R SettingPresets $SHAREDIR/SettingPresets
Expand Down

0 comments on commit d218ada

Please sign in to comment.