diff options
| author | 2026-04-21 01:23:19 +0100 | |
|---|---|---|
| committer | 2026-04-21 01:23:19 +0100 | |
| commit | d93c3d363e438eebda1d9389e5c18f07fd6aa838 (patch) | |
| tree | 3d63117175e69f4bc04f576d255fb2e4554e7395 /run_onchange_after_deploy-firefox.sh | |
| parent | f1be7b1a74bf21db40a08f82bdbb9bee1d16f955 (diff) | |
| download | dotfiles-d93c3d363e438eebda1d9389e5c18f07fd6aa838.tar.gz dotfiles-d93c3d363e438eebda1d9389e5c18f07fd6aa838.tar.bz2 dotfiles-d93c3d363e438eebda1d9389e5c18f07fd6aa838.zip | |
fix: use cp --remove-destination in firefox deploy script
Diffstat (limited to 'run_onchange_after_deploy-firefox.sh')
| -rwxr-xr-x | run_onchange_after_deploy-firefox.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_onchange_after_deploy-firefox.sh b/run_onchange_after_deploy-firefox.sh index 5108451..affea64 100755 --- a/run_onchange_after_deploy-firefox.sh +++ b/run_onchange_after_deploy-firefox.sh @@ -13,8 +13,8 @@ if [ -d "$PROFILES_DIR" ]; then fi if [ -n "$PROFILE" ]; then - cp "$CHEZMOI_SOURCE_DIR/firefox/user-overrides.js" "$PROFILE/user-overrides.js" + cp --remove-destination "$CHEZMOI_SOURCE_DIR/firefox/user-overrides.js" "$PROFILE/user-overrides.js" mkdir -p "$PROFILE/chrome" - cp "$CHEZMOI_SOURCE_DIR/firefox/chrome/userChrome.css" "$PROFILE/chrome/userChrome.css" + cp --remove-destination "$CHEZMOI_SOURCE_DIR/firefox/chrome/userChrome.css" "$PROFILE/chrome/userChrome.css" fi fi |
