Fix typo in cosmocc (#884)

This commit is contained in:
Gautham 2023-08-14 01:31:39 -05:00 committed by GitHub
parent 2b67e15b3d
commit f5b39e9f31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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