Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archiso
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
commit16f9e47fef64b16bea1b49e0c1506103cfb054f4 (patch)
tree064993d62ea75e4d40044c5207ca325f67921bf1 /archiso
parent337acf90c32cb0f3112b6a65398fa2aecff63105 (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')
-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
}