1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/scripts/getCurrentVersion.sh

8 lines
178 B
Bash
Raw Normal View History

2023-07-06 00:11:32 +12:00
#!/bin/bash
version=$(cat lerna.json \
| grep version \
| head -1 \
| awk -F: '{gsub(/"/,"",$2);gsub(/[[:space:]]*/,"",$2); print $2}' \
| sed 's/[",]//g')
echo $version