jetbrains: add update script wrapper

The main script only does a single program, and requires being fed the
name. This is a wrapper to get those names.
This commit is contained in:
2021-01-25 15:26:57 +11:00
parent fb2bbf59d0
commit af57ecdd22
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env nix-shell
#!nix-shell --show-trace ./updater.nix -i bash
set -e
for app in $APPS; do
./updater-jetbrains $app -o ${app%-[0-9.]*}-generated.nix
done
# Local Variables:
# mode: sh
# End: