Skip to content

Commit 8f9632b

Browse files
committed
added -y switches to uninstall
1 parent 8104138 commit 8f9632b

File tree

6 files changed

+6
-12
lines changed

6 files changed

+6
-12
lines changed

binjitsu/uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash -e
22

3-
ctf-tools-pip uninstall binjitsu
3+
ctf-tools-pip uninstall -y binjitsu || true

foresight/uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash -e
22

3-
ctf-tools-pip3 uninstall foresight || true
3+
ctf-tools-pip3 uninstall -y foresight || true

mitmproxy/uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash -e
22

3-
ctf-tools-pip uninstall mitmproxy || true
3+
ctf-tools-pip uninstall -y mitmproxy || true

pwntools/uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash -e
22

3-
ctf-tools-pip uninstall pwntools || true
3+
ctf-tools-pip uninstall -y pwntools || true

xortool/install

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
#!/bin/bash -e
22

3-
git clone --depth 1 https://github.com/hellman/xortool.git
4-
pip install -e ./xortool
5-
6-
mkdir -p bin
7-
cd bin
8-
ln -s ../xortool/xortool/{xortool,xortool-xor} .
9-
cd ..
3+
ctf-tools-pip install --upgrade 'git+https://github.com/hellman/xortool.git'

xortool/uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash -e
22

3-
pip uninstall -y xortool
3+
ctf-tools-pip uninstall -y xortool || true

0 commit comments

Comments
 (0)