File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5959
6060 printf y | sudo python3 -m install.uninstall
6161
62- if pip show input-remapper; then
62+ if pip show input-remapper --quiet ; then
6363 echo "Expected input-remapper package to be uninstalled"
6464 exit 1
6565 fi
8282 run : |
8383 sudo python3 -m install --root / --components python_module
8484
85- if ! pip show input-remapper; then
85+ if ! pip show input-remapper --quiet ; then
8686 echo "Expected python module to be installed"
8787 exit 1
8888 fi
9595 printf y | sudo python3 -m install.uninstall
9696 sudo python3 -m install --root / --components data_files
9797
98- if pip show input-remapper; then
98+ if pip show input-remapper --quiet ; then
9999 echo "Expected python module not to be installed"
100100 exit 1
101101 fi
@@ -108,7 +108,7 @@ jobs:
108108 printf y | sudo python3 -m install.uninstall
109109 sudo python3 -m install --root / --components python_module data_files
110110
111- if ! pip show input-remapper; then
111+ if ! pip show input-remapper --quiet ; then
112112 echo "Expected python module to be installed"
113113 exit 1
114114 fi
You can’t perform that action at this time.
0 commit comments