diff options
Diffstat (limited to '')
-rwxr-xr-x | .ci/test.sh | 4 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rwxr-xr-x | links-remove (renamed from unlink.sh) | 0 | ||||
-rwxr-xr-x | links-update (renamed from update.sh) | 0 |
4 files changed, 5 insertions, 5 deletions
diff --git a/.ci/test.sh b/.ci/test.sh index fffc883..37167ec 100755 --- a/.ci/test.sh +++ b/.ci/test.sh @@ -58,11 +58,11 @@ call_bin_script() { } call_update() { - call_bin_script "$script_dir/../update.sh" + call_bin_script "$script_dir/../links-update" } call_unlink() { - call_bin_script "$script_dir/../unlink.sh" + call_bin_script "$script_dir/../links-remove" } verify_output() { @@ -27,10 +27,10 @@ This description is obviously confusing; see the complete usage example below. Usage ----- -Symlinks are managed by `update.sh`. +Symlinks are managed by `links-update`. ``` -usage: update.sh [-h|--help] [-d|--database PATH] [-s|--shared-dir DIR] [-n|--dry-run] +usage: links-update [-h|--help] [-d|--database PATH] [-s|--shared-dir DIR] [-n|--dry-run] ``` Pass the `--help` flag to this script to examine its detailed usage @@ -62,7 +62,7 @@ In this example, the symlinks to files in "../src" must appear in > echo "$DEST" /test/dest -> ./update.sh --shared-dir ../src/ +> ./links-update --shared-dir ../src/ ... > tree /test/dest/ |