xeals
af57ecdd22
The main script only does a single program, and requires being fed the name. This is a wrapper to get those names.
13 lines
205 B
Plaintext
Executable File
13 lines
205 B
Plaintext
Executable File
#!/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:
|