mirror of
https://github.com/urbit/shrub.git
synced 2024-11-24 04:58:08 +03:00
12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
sha=$(git rev-parse $(git branch --show-current))
|
||
|
|
||
|
brass=$(nix-build nix/ops -A brass-ropsten --no-out-link)
|
||
|
ivory=$(nix-build nix/ops -A ivory-ropsten --no-out-link)
|
||
|
|
||
|
cp $brass ./brass-ropsten-${sha:0:5}.pill
|
||
|
cp $ivory ./ivory-ropsten-${sha:0:5}.pill
|