mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
15 lines
446 B
Bash
Executable File
15 lines
446 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
isar_version="$(awk '/isar: /{gsub(/\^/, "", $2); print $2}' pubspec.yaml)"
|
|
checked_out_version="$(git -C .isar describe --tags)"
|
|
|
|
if [ "$isar_version" = "$checked_out_version" ]; then
|
|
echo "isar is up-to-date."
|
|
exit 0
|
|
fi
|
|
echo "Updating from version $checked_out_version to $isar_version."
|
|
|
|
git -C .isar checkout "$isar_version"
|
|
cargo generate-lockfile --manifest-path .isar/Cargo.toml
|
|
mv .isar/Cargo.lock .isar-cargo.lock
|