From 9ff0e9cf722e2ef3efc64ab4738528a774fc9d3c Mon Sep 17 00:00:00 2001 From: axel Date: Thu, 14 Dec 2006 22:06:30 +1000 Subject: [PATCH] Fix incorrect use of the 'builtin' builtin when the 'command' builtin was intended darcs-hash:20061214120630-ac50b-5cee4b32042bb23c1a4b01e2a400a4af13c64c9c.gz --- share/config_interactive.fish.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/config_interactive.fish.in b/share/config_interactive.fish.in index 1f802c1cc..09b87af6c 100644 --- a/share/config_interactive.fish.in +++ b/share/config_interactive.fish.in @@ -19,11 +19,11 @@ if not set -q __fish_init_1_22_0 # Perform upgrade of configuration file hierarchy if not test -d $configdir - builtin mkdir $configdir >/dev/null + command mkdir $configdir >/dev/null end if test -d $configdir - if builtin mkdir $configdir/fish + if command mkdir $configdir/fish # These files are sometimes overwritten to by fish, so # we want backups of them in case something goes wrong