manta-cli 1.59.9-beta.5

Another CLI for ALPS
1
2
3
4
5
6
7
8
#!/bin/bash

OS=$(uname -s | tr '[:upper:]' '[:lower:]')
if [[ "${OS}x" == "linux" ]]; then
  cross build --target $(uname -m)-unknown-${OS}-gnu --release
else
  cross build --target $(uname -m)-apple-${OS} --release
fi