9 lines
142 B
Bash
Executable file
9 lines
142 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
cooker init --force menu.json
|
|
cooker generate
|
|
cooker update
|
|
cooker build --keepgoing
|