1
mirror of https://github.com/jakejarvis/dotfiles.git synced 2026-01-13 04:32:54 -05:00

make the install script directly pipeable (don't do this)

This commit is contained in:
2021-03-16 13:08:30 -04:00
parent 10160f63c0
commit f1e8bddb4a
4 changed files with 27 additions and 8 deletions

View File

@@ -6,6 +6,8 @@
# https://github.com/paulirish/dotfiles/blob/master/.osx
# https://github.com/kevinSuttle/macOS-Defaults/blob/master/.macos
set -euo pipefail
# Change new hostname here if necessary
COMPUTER_NAME="JJ-MBA"

View File

@@ -1,5 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
# This shouldn't be run if not on macOS, but make double sure
if test ! "$(uname)" = "Darwin"; then
exit 0