diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-04-03 08:44:02 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-04-03 08:44:02 +0000 |
| commit | 1271ba1d329c8b16062600dfafdec1d06c735c2e (patch) | |
| tree | 6f42961322830ce8c0518de82b9240f4803e0057 /scripts/deploy | |
| parent | 5aa6a15ffdf68a8dbe12eb0fdfff93deafb9da10 (diff) | |
feat: require repository_url on tasks; fix UpdateTask to persist it; fix cascade-retry test race
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'scripts/deploy')
| -rwxr-xr-x | scripts/deploy | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/deploy b/scripts/deploy index 1a08fc5..2161535 100755 --- a/scripts/deploy +++ b/scripts/deploy @@ -45,7 +45,10 @@ mkdir -p "${SITE_DIR}/scripts" find "${REPO_DIR}/scripts" -maxdepth 1 -type f -exec cp -p {} "${SITE_DIR}/scripts/" \; echo "==> Installing to /usr/local/bin..." -cp "${BIN_DIR}/claudomator" /usr/local/bin/claudomator +install -m 755 "${BIN_DIR}/claudomator" /usr/local/bin/claudomator + +echo "==> Verifying system CLI version..." +/usr/local/bin/claudomator version echo "==> Fixing permissions..." "${REPO_DIR}/scripts/fix-permissions" |
