1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +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