mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
7 lines
156 B
Bash
7 lines
156 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
APP_VERSION=$(node -e "console.log(require('./build/package.json').version)")
|
||
|
HASH=$(md5 ./dist/insomnia-*.deb)
|
||
|
|
||
|
echo "$HASH for $APP_VERSION"
|