From 088e9c83e8683f9bfbf694771c128a3cc1d62c50 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 15 Aug 2021 14:01:23 +0200 Subject: Fix deploy.py branch handling --- deploy.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'deploy.py') diff --git a/deploy.py b/deploy.py index 053237a..a78649b 100644 --- a/deploy.py +++ b/deploy.py @@ -14,12 +14,12 @@ if __name__ == '__main__': subprocess.run(['git', 'worktree', 'add', '--detach', tmpdir], check=True) try: subprocess.run(['hugo'], cwd=tmpdir, check=True) - subprocess.run(['git', 'add', '--force', 'public'], check=True) - write_tree = subprocess.run(['git', 'write-tree', '--prefix=public/'], check=True, capture_output=True) + subprocess.run(['git', 'add', '--force', 'public'], cwd=tmpdir, check=True) + write_tree = subprocess.run(['git', 'write-tree', '--prefix=public/'], cwd=tmpdir, check=True, capture_output=True) tree = write_tree.stdout.strip() - commit = subprocess.run(['git', 'commit-tree', '-p', 'HEAD', '-p', 'refs/heads/deploy', '-m', 'deploy.py auto-commit', tree], check=True, capture_output=True).stdout.strip() - subprocess.run(['git', 'update-ref', '-m', f'deploy.sh update deploy branch to {commit}', 'refs/heads/deploy', commit], check=True) + commit = subprocess.run(['git', 'commit-tree', '-p', 'HEAD', '-p', 'refs/heads/deploy', '-m', 'deploy.py auto-commit', tree], cwd=tmpdir, check=True, capture_output=True).stdout.strip() + subprocess.run(['git', 'update-ref', '-m', f'deploy.sh update deploy branch to {commit}', 'refs/heads/deploy', commit], cwd=tmpdir, check=True) finally: subprocess.run(['git', 'worktree', 'remove', '-f', tmpdir], check=True) -- cgit