diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d8ff27..ab76c99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,6 +27,8 @@ jobs: run: ./setup - name: Test setup artifacts run: test/setup_artifacts + - name: Run uninstall + run: ./uninstall macos_setup: name: Setup on macOS @@ -40,6 +42,8 @@ jobs: run: ./setup - name: Test setup artifacts run: test/setup_artifacts + - name: Run uninstall + run: ./uninstall static_analysis: name: Static analysis diff --git a/README.md b/README.md index 41e4ad9..ef40ecf 100644 --- a/README.md +++ b/README.md @@ -216,6 +216,12 @@ jobs: run: rush get hello ``` +## Uninstalling + +```shell +$ curl -Ls get.dannyb.co/rush/uninstall | bash +``` + ## Contributing / Support If you experience any issue, have a question or a suggestion, or if you wish diff --git a/test/setup_artifacts b/test/setup_artifacts index c5c0720..236ef5a 100755 --- a/test/setup_artifacts +++ b/test/setup_artifacts @@ -33,6 +33,6 @@ fi # Check a couple of man pages check_file "/usr/local/share/man/man1/rush.1" -check_file "/usr/local/share/man/man1/rush-connect.1" +check_file "/usr/local/share/man/man1/rush-get.1" echo "Setup artifacts are OK" diff --git a/uninstall b/uninstall old mode 100644 new mode 100755