WizardKit/SW Diagnostics.command
Alan Mason 7ff964fc37 2016-08: Retroactive Updates
* Added installers and updated diagnostics
2017-12-04 16:40:46 -08:00

13 lines
270 B
Bash

#!/bin/bash
## Wizard Kit: Start SW Diagnostics
# Init
## Get .bin absolute path (dirty code roughly based on http://stackoverflow.com/a/12197227)
pushd . > /dev/null
cd "$(dirname "$0")/.bin"
BIN="$(pwd)"
popd > /dev/null
# Run
sudo "$BIN/Scripts/diagnostics"
exit 0