Change order in which the scripts are added; do the project's first, then the downloads.

This commit is contained in:
2026-04-10 18:09:40 -07:00
parent a87c205a80
commit a76cb8b5ec

View File

@@ -64,12 +64,12 @@ function update-shared {
remote_bin="shared-rc-deleteme/bin-shared" remote_bin="shared-rc-deleteme/bin-shared"
if [[ -d "$local_bin" ]]; then if [[ -d "$local_bin" ]]; then
log "\n`date` - Found '$local_bin', adding scripts.\n" log "\n`date` - Found '$local_bin', adding scripts.\n"
mv -v $remote_bin/*.sh "$local_bin"/
refactor_script="refactor_music_library.sh" refactor_script="refactor_music_library.sh"
wget -O "$refactor_script" \ wget -O "$refactor_script" \
https://git.hyperling.com/me/shell-music-refactor-library/src/branch/main/refactor_music_library.sh https://git.hyperling.com/me/shell-music-refactor-library/src/branch/main/refactor_music_library.sh
mv -v $refactor_script "$local_bin"/ mv -v $refactor_script "$local_bin"/
mv -v $remote_bin/*.sh "$local_bin"/
else else
echo "Did not find '$local_bin', did not copy scripts." echo "Did not find '$local_bin', did not copy scripts."
fi fi