summaryrefslogtreecommitdiff
path: root/archiso/hooks
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2009-01-30 10:50:43 -0800
committerAaron Griffin <aaronmgriffin@gmail.com>2009-01-30 10:50:43 -0800
commitb3d8310dcbddf6f31fa39cad4f70f20aeaa81f98 (patch)
tree9f627a3a4b94ce892cd4ea585ce95c109e5d8a81 /archiso/hooks
parent02ea49a5d40e87a4564cc9cca9e4820888e577a8 (diff)
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/hooks')
-rw-r--r--archiso/hooks/archiso-early6
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
}