diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-22 23:08:20 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-22 23:08:20 +0200 |
commit | 43f56ced7389b97fe88af981a0134d13e54327b6 (patch) | |
tree | a257a3011e3d8502270d46cd1d07c28fdbd292f4 /Meta/build-root-filesystem.sh | |
parent | ebdeed087c2438f6a58e4e9e4495ef6e4bbe8d5f (diff) | |
download | serenity-43f56ced7389b97fe88af981a0134d13e54327b6.zip |
Meta: Remove sync-local.sh move warning from build-root-filesystem.sh
Diffstat (limited to 'Meta/build-root-filesystem.sh')
-rwxr-xr-x | Meta/build-root-filesystem.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index 62145dfc4d..455dbc611f 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -126,21 +126,6 @@ ln -s checksum mnt/bin/sha256sum ln -s checksum mnt/bin/sha512sum echo "done" -if [ -f "${SERENITY_SOURCE_DIR}/Kernel/sync-local.sh" ] || [ -f "${SERENITY_SOURCE_DIR}/Build/sync-local.sh" ]; then - # TODO: Deprecated on 2021-01-30. In a few months, remove this 'if'. - tput setaf 1 - echo - echo " +-----------------------------------------------------------------------------+" - echo " | |" - echo " | WARNING: sync-local.sh, previously located in Kernel/ and later Build/ |" - echo " | must be moved to \$SERENITY_SOURCE_DIR! |" - echo " | See https://github.com/SerenityOS/serenity/pull/5172 for details. |" - echo " | |" - echo " +-----------------------------------------------------------------------------+" - echo - tput sgr 0 -fi - # Run local sync script, if it exists if [ -f "${SERENITY_SOURCE_DIR}/sync-local.sh" ]; then sh "${SERENITY_SOURCE_DIR}/sync-local.sh" |