diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-03-27 17:22:39 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-03-27 17:22:39 +0200 |
commit | 7baf52dfc5e0e70cc8566d693d010465535b1886 (patch) | |
tree | 4a5993ae732c78a3938b0629916c38ea440a24e9 /src/connections | |
parent | 2a7aa9d913dfa2591592bf1b1e0e6a7cf8e63808 (diff) | |
download | netctl-7baf52dfc5e0e70cc8566d693d010465535b1886.tar.gz netctl-7baf52dfc5e0e70cc8566d693d010465535b1886.tar.xz |
Uniformize SUBR_DIR quoting
It needs to be quoted when used as an argument. Putting the name in curly braces is unnecessary.
Diffstat (limited to 'src/connections')
-rw-r--r-- | src/connections/wireless | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connections/wireless b/src/connections/wireless index 2e371c9..7abb180 100644 --- a/src/connections/wireless +++ b/src/connections/wireless @@ -1,7 +1,7 @@ #! /bin/bash . /usr/lib/network/network -. $SUBR_DIR/8021x -. $SUBR_DIR/rfkill +. "$SUBR_DIR/8021x" +. "$SUBR_DIR/rfkill" wireless_up() { |