diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-30 10:50:43 -0800 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-30 10:50:43 -0800 |
commit | b3d8310dcbddf6f31fa39cad4f70f20aeaa81f98 (patch) | |
tree | 9f627a3a4b94ce892cd4ea585ce95c109e5d8a81 /archiso | |
parent | 02ea49a5d40e87a4564cc9cca9e4820888e577a8 (diff) | |
download | archiso32-b3d8310dcbddf6f31fa39cad4f70f20aeaa81f98.tar.xz |
Fix a typo in the archiso-early hook
Wrong slash! No idea how that happened :)
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'archiso')
-rw-r--r-- | archiso/hooks/archiso-early | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archiso/hooks/archiso-early b/archiso/hooks/archiso-early index 0a83218..884c4be 100644 --- a/archiso/hooks/archiso-early +++ b/archiso/hooks/archiso-early @@ -2,7 +2,7 @@ run_hook () { # Set our usbdelay time. Default: 0 - /bin/mkdir -p /etc/modprobe.d/ - echo "options usb-storage delay_use=${usbdelay:-0}" >/ - /etc/modprobe.d/usb-delay + cd / + /bin/mkdir -p etc/modprobe.d/ + echo "options usb-storage delay_use=${usbdelay:-0}" > /etc/modprobe.d/usb-delay } |