From a76cb8b5ec5a9a2c4c89025468247e7928b97d4c Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 10 Apr 2026 18:09:40 -0700 Subject: [PATCH] Change order in which the scripts are added; do the project's first, then the downloads. --- rc_shared.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc_shared.sh b/rc_shared.sh index a49ce5f..fa8e9e5 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -64,12 +64,12 @@ function update-shared { remote_bin="shared-rc-deleteme/bin-shared" if [[ -d "$local_bin" ]]; then log "\n`date` - Found '$local_bin', adding scripts.\n" + mv -v $remote_bin/*.sh "$local_bin"/ + refactor_script="refactor_music_library.sh" wget -O "$refactor_script" \ https://git.hyperling.com/me/shell-music-refactor-library/src/branch/main/refactor_music_library.sh mv -v $refactor_script "$local_bin"/ - - mv -v $remote_bin/*.sh "$local_bin"/ else echo "Did not find '$local_bin', did not copy scripts." fi