Skip to content

Commit

Permalink
feat(install): straightforward install on Windows (in Git-bash enviro…
Browse files Browse the repository at this point in the history
…nment)

issue kamranahmedse#122 - Install : Not straight forward to install on Windows (Git-bash)
  • Loading branch information
geraudloup committed Feb 6, 2022
1 parent ce40800 commit 25a7c03
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions windows-installer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash

## Clone the repo
git clone https://github.com/kamranahmedse/git-standup.git --depth=1 || {
echo >&2 "Clone failed with $?"
exit 1
}

cd git-standup || exit

cp git-standup /bin || {
echo >&2 "Copy of git-standup into /bin folder failed with $?"
exit 1
}

cd ..

rm -rf git-standup

0 comments on commit 25a7c03

Please sign in to comment.