From: Jacob Alexander Date: Tue, 27 May 2014 06:47:47 +0000 (-0700) Subject: Removing sudo from Linux load script. X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fd62e488be9c95d12d5fe6480ff21c1a60581d7e;p=kiibohd-controller.git Removing sudo from Linux load script. --- diff --git a/LoadFile/load b/LoadFile/load index da03c8c..569e91c 100755 --- a/LoadFile/load +++ b/LoadFile/load @@ -11,7 +11,7 @@ if [ ! -e teensy-loader-cli/teensy-loader-cli ]; then fi #| Loads the hex file onto the teensy -sudo teensy-loader-cli/teensy-loader-cli -mmcu=@MCU@ -w @TARGET_HEX@ +teensy-loader-cli/teensy-loader-cli -mmcu=@MCU@ -w @TARGET_HEX@ exit 0