mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 17:33:19 +01:00
7 lines
252 B
Bash
Executable File
7 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
UUID=`grep -E '^[ ]*"uuid":' metadata.json | sed 's@^[ ]*"uuid":[ ]*"\(.\+\)",[ ]*@\1@'`
|
|
VSTRING=`grep -E '^[ ]*"version":' metadata.json | sed 's@^[ ]*"version":[ ]*"\(.\+\)",[ ]*@\1@'`
|
|
rm *.zip
|
|
cd _build && zip -qr "../$UUID.zip" .
|
|
|
|
exit 0; |