9 lines
No EOL
220 B
Bash
9 lines
No EOL
220 B
Bash
#!/bin/bash
|
|
|
|
# Get filename
|
|
id=$(cat maubot.yaml | grep "id:" | tr ' ' '\n' | tail -n1)
|
|
version=$(cat maubot.yaml | grep "version:" | tr ' ' '\n' | tail -n1)
|
|
filename="$id-$version.mbp"
|
|
|
|
# Compress to zip
|
|
zip $filename * |