1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

applications: fix activation

This commit is contained in:
Daiderd Jordan 2017-05-20 14:38:32 +02:00
parent 290b1d8aad
commit cee2bb93cc
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -24,10 +24,10 @@ in
# Set up applications.
echo "setting up ~/Applications..." >&2
if [ -d ~/Applications ]; then
echo "warning: ~/Applications is a directory, skipping..." >&2
else
if [ ! -e ~/Applications -o -L ~/Applications ]; then
ln -sfn ${cfg.build.applications}/Applications ~/Applications
else
echo "warning: ~/Applications is a directory, skipping..." >&2
fi
'';