Skip to content

Commit

Permalink
fix: escape branch in make_package.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed Dec 6, 2024
1 parent d6063aa commit 8253481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/make_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def build_on_remote_host(self):
"mkdir -p ~/build/",
f"rm -rf ~/build/{REPO_NAME}",
f"git clone https://github.com/{REPO_OWNER}/{REPO_NAME}.git ~/build/{REPO_NAME}/",
f"git -C ~/build/{REPO_NAME} checkout " + self.args.branch,
f"git -C ~/build/{REPO_NAME} checkout '{self.args.branch}'",
f"composer install --working-dir ~/build/{REPO_NAME}",
f"cp -r ~/build/{REPO_NAME}/vendor/* {includes_dir}",
f"python3 ~/build/{REPO_NAME}/tools/make_package.py --tag {self.args.tag} {notests}",
Expand Down

0 comments on commit 8253481

Please sign in to comment.