fleet/tools/mdm/apple/toggle-mdm-dev
Jacob Shandling ea414cdbb2
fix broken shell script (#9920)
Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
2023-02-21 15:49:16 -08:00

9 lines
110 B
Bash
Executable file

#!/bin/bash
if [[ $USE_MDM == "1" ]]; then
export USE_MDM=0
else
export USE_MDM=1
fi
source $FLEET_ENV_PATH