Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
Fix typo in postinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
jkooker authored Aug 16, 2017
1 parent cb23f15 commit 5fc4f2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install-scripts/postinstall
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
set -e

KEXT="/Library/Extensions/softu2f.kext"
LAUCNH_AGENTS_DIR="$HOME/Library/LaunchAgents"
LAUNCH_AGENT_PLIST="$LAUCNH_AGENTS_DIR/com.github.SoftU2F.plist"
LAUNCH_AGENTS_DIR="$HOME/Library/LaunchAgents"
LAUNCH_AGENT_PLIST="$LAUNCH_AGENTS_DIR/com.github.SoftU2F.plist"

# Make sure the kext is loaded
kextutil $KEXT

# This directory should already exist, but some users have had issues with it
# being missing.
mkdir -p $LAUCNH_AGENTS_DIR
mkdir -p $LAUNCH_AGENTS_DIR

# Write a LaunchAgent plist so app starts at login
cat > $LAUNCH_AGENT_PLIST << EOT
Expand Down

0 comments on commit 5fc4f2f

Please sign in to comment.