mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
* docs: Update README with demo gif * fix: Proxy remove dependency on interaction * fix: Update demo gif width * Update docs/demo/pmg-intro.tape Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Abhisek Datta <abhisek.datta@gmail.com> * fix: PMG demo --------- Signed-off-by: Abhisek Datta <abhisek.datta@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
15 lines
280 B
Bash
Executable File
15 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check if vhs is installed
|
|
if ! command -v vhs &> /dev/null; then
|
|
echo "vhs could not be found"
|
|
exit 1
|
|
fi
|
|
|
|
# Switch to the script directory
|
|
cd "$(dirname "$0")"
|
|
|
|
# Enumerate all .tape files in the current directory
|
|
for file in *.tape; do
|
|
vhs "$file"
|
|
done |