Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
POSIX
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Apr 28, 2017
1 parent 61bebd0 commit e497ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atom.symlink/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if test "$(which apm)"; then
wakatime
"
for module in $modules; do
if [[ ! -d "$HOME/.atom/packages/$module" ]]; then
if test ! -d "$HOME/.atom/packages/$module"; then
apm install "$module"
fi
done
Expand All @@ -31,7 +31,7 @@ if test "$(which apm)"; then
exception-reporting
"
for module in $modules; do
if [[ -d "$HOME/.atom/packages/$module" ]]; then
if test -d "$HOME/.atom/packages/$module"; then
apm remove "$module"
fi
done
Expand Down

0 comments on commit e497ab6

Please sign in to comment.