Skip to content

Commit 123eac1

Browse files
authored
Fixed Mac installer
1 parent cae19ee commit 123eac1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Install_nix.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ $(uname -s) = "Linux" ]; then
77
ODT_FOLDER="${HOME}/.local/share/DaVinciResolve/ACES Transforms/ODT"
88
LUT_FOLDER="/opt/resolve/LUT"
99

10-
elif [ $(uname -s) = "darwin" ]; then
10+
elif [ $(uname -s) = "Darwin" ]; then
1111
IDT_FOLDER="${HOME}/Library/Application Support/Blackmagic Design/DaVinci Resolve/ACES Transforms/IDT"
1212
ODT_FOLDER="${HOME}/Library/Application Support/Blackmagic Design/DaVinci Resolve/ACES Transforms/ODT"
1313
LUT_FOLDER="/Library/Application Support/Blackmagic Design/DaVinci Resolve/LUT"
@@ -20,4 +20,4 @@ cp IDT/*.dctl "${IDT_FOLDER}/" && echo "Installed IDTs" || echo "Failed to insta
2020
cp ODT/*.dctl "${ODT_FOLDER}/" && echo "Installed ODTs" || echo "Failed to install ODTs"
2121
sudo cp -R LUT/ "${LUT_FOLDER}/" && echo "Installed DCTLs to LUT Folder" || echo "Failed to install DCTLs to LUT Folder"
2222

23-
exit 0
23+
exit 0

0 commit comments

Comments
 (0)