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 79249de commit cbf21a0Copy full SHA for cbf21a0
ci3/os
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env bash
2
+set -e
3
+case "$(uname -s)" in
4
+ Linux) echo linux ;;
5
+ Darwin) echo macos ;;
6
+ *) echo "Unsupported OS: $(uname -s). Only linux and macos are supported." >&2; exit 1 ;;
7
+esac
0 commit comments