mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 03:59:10 +01:00
REF: some bash scripts
This commit is contained in:
parent
aef1db8a8a
commit
068627fa7b
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
if [ "$OSTYPE" = "darwin"* ]; then
|
||||
echo "Running pod update..."
|
||||
cd ios
|
||||
pod install
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
HEAD=`git rev-parse --abbrev-ref --symbolic-full-name HEAD`
|
||||
if [ $HEAD == "master" ]
|
||||
if [ "$HEAD" = "master" ]
|
||||
then
|
||||
TAG=`git tag | sort | tail -n 1`
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue