2021-03-01 23:41:34 -05:00
|
|
|
#!/bin/sh
|
2021-02-14 18:36:09 -05:00
|
|
|
#
|
|
|
|
# "I will be a shieldmaiden no longer,
|
|
|
|
# nor vie with the great Riders, nor
|
|
|
|
# take joy only in the songs of slaying.
|
|
|
|
# I will be a healer, and love all things
|
|
|
|
# that grow and are not barren."
|
|
|
|
# Éowyn, The Return of the King
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# This script shall heal the little broken programs
|
|
|
|
# using the patches in this directory and convey them
|
|
|
|
# to convalesce in the healed directory.
|
|
|
|
#
|
|
|
|
|
2021-03-06 18:19:26 -05:00
|
|
|
set -e
|
|
|
|
|
2021-02-14 18:36:09 -05:00
|
|
|
# We run from the patches dir. Go there now if not already.
|
2021-03-01 23:41:34 -05:00
|
|
|
cd $(dirname $(realpath $0))
|
2021-02-14 18:36:09 -05:00
|
|
|
pwd # Show it upon the screen so all shall be made apparent.
|
|
|
|
|
|
|
|
# Create healed/ directory here if it doesn't already exist.
|
|
|
|
mkdir -p healed
|
|
|
|
|
|
|
|
# Cycle through all the little broken Zig applications.
|
|
|
|
for broken in ../exercises/*.zig
|
|
|
|
do
|
|
|
|
# Remove the dir and extension, rendering the True Name.
|
|
|
|
true_name=$(basename $broken .zig)
|
2021-02-14 20:26:57 -05:00
|
|
|
patch_name="patches/$true_name.patch"
|
2021-02-14 18:36:09 -05:00
|
|
|
|
2021-02-14 20:26:57 -05:00
|
|
|
|
|
|
|
if [[ -f $patch_name ]]
|
2021-02-14 18:36:09 -05:00
|
|
|
then
|
|
|
|
# Apply the bandages to the wounds, grow new limbs, let
|
|
|
|
# new life spring into the broken bodies of the fallen.
|
|
|
|
echo Healing $true_name...
|
2021-02-14 20:26:57 -05:00
|
|
|
patch --output=healed/$true_name.zig $broken $patch_name
|
2021-02-14 18:36:09 -05:00
|
|
|
else
|
|
|
|
echo Cannot heal $true_name. Making empty patch.
|
2021-02-14 20:26:57 -05:00
|
|
|
echo > $patch_name
|
2021-02-14 18:36:09 -05:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Return to the home of our ancestors.
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# Test the healed exercises. May the compiler have mercy upon us.
|
|
|
|
zig build -Dhealed
|