mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
Fix typo in cosmocc (#884)
This commit is contained in:
parent
2b67e15b3d
commit
f5b39e9f31
2 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ if [ ! -d "$COSMO" ]; then
|
|||
fi
|
||||
|
||||
if [ "$1" = "--update" ]; then
|
||||
cd /opt/cosmo || exit
|
||||
cd $COSMO || exit
|
||||
if GIT=$(command -v git); then
|
||||
echo "running git pull on cosmo..." >&2
|
||||
"$GIT" pull --quiet || exit
|
||||
|
|
|
@ -149,7 +149,7 @@ else
|
|||
fi
|
||||
|
||||
if [ "$1" = "--update" ]; then
|
||||
cd /opt/cosmo || exit
|
||||
cd $COSMO || exit
|
||||
if GIT=$(command -v git); then
|
||||
echo "running git pull on cosmo..." >&2
|
||||
"$GIT" pull --quiet || exit
|
||||
|
|
Loading…
Reference in a new issue