29 lines
492 B
Bash
Executable File
29 lines
492 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Lists the latest versions of all projects in the Handy-Http organization.
|
|
|
|
cd ../transport
|
|
echo "transport:"
|
|
git describe --tags --abbrev=0
|
|
|
|
cd ../primitives
|
|
echo "primitives:"
|
|
git describe --tags --abbrev=0
|
|
|
|
cd ../websockets
|
|
echo "websockets:"
|
|
git describe --tags --abbrev=0
|
|
|
|
cd ../data
|
|
echo "data:"
|
|
git describe --tags --abbrev=0
|
|
|
|
cd ../starter
|
|
echo "starter:"
|
|
git describe --tags --abbrev=0
|
|
|
|
cd ../client
|
|
echo "client:"
|
|
git describe --tags --abbrev=0
|
|
|
|
cd ../devtools |