silly-queen-7197
07/14/2023, 6:07 PM[docker].tools
but "sw_vers" doesn't work on Linux. Is there a way to make this configurable depending on the OS?curved-television-6568
07/14/2023, 6:36 PM# .pants.bootstrap
case `uname -s`;
Darwin) PLAT_CFG="pants.macos.toml" ;;
Linux) PLAT_CFG="pants.linux.toml" ;;
esac
export PANTS_CONFIG_FILES="['pants.toml', '$PLAT_CFG']"
silly-queen-7197
07/14/2023, 7:40 PM