We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4071d1 commit ad4c0caCopy full SHA for ad4c0ca
.github/workflows/install-zig/action.yml
@@ -6,7 +6,9 @@ runs:
6
- name: Install zig
7
shell: bash
8
run: |
9
- if [[ `cat /etc/os-release | grep "Amazon Linux"` ]]; then
+ if [[ "$OSTYPE" == "darwin"* ]]; then
10
+ echo "macOS detected, pip3 already available"
11
+ elif [[ `cat /etc/os-release | grep "Amazon Linux"` ]]; then
12
yum install -y python3-pip
13
else
14
sudo apt install -y python3-pip
0 commit comments