11 lines
200 B
Bash
Executable File
11 lines
200 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Updates the default cuda symlink to the supported version
|
|
#
|
|
set -ex
|
|
|
|
[[ $(uname) = Linux ]] || exit 1
|
|
[[ $USER = root ]] || exit 1
|
|
|
|
ln -sfT /usr/local/cuda-9.2 /usr/local/cuda
|