diff --git a/Scripts/Bash/Functions/Help/help_updateOutputFileInfo.sh b/Scripts/Bash/Functions/Help/help_updateOutputFileInfo.sh
index 3fb2517..43f7951 100755
--- a/Scripts/Bash/Functions/Help/help_updateOutputFileInfo.sh
+++ b/Scripts/Bash/Functions/Help/help_updateOutputFileInfo.sh
@@ -33,8 +33,7 @@ function help_updateOutputFileInfo {
     [[ ! -d ${MANUALS_DIR[3]} ]] &&  mkdir -p ${MANUALS_DIR[3]}
 
     # Update info file.
-    /usr/bin/makeinfo ${MANUALS_FILE[1]} --output=${MANUALS_FILE[4]} \
-        -I=/home/centos/artwork
+    /usr/bin/makeinfo ${MANUALS_FILE[1]} --output=${MANUALS_FILE[4]}
 
     # Check info file. If the info file was not created then there are
     # errors to fix.
diff --git a/Scripts/Bash/Functions/Help/help_updateOutputFilePlaintext.sh b/Scripts/Bash/Functions/Help/help_updateOutputFilePlaintext.sh
index 86a056f..b6bdb1b 100755
--- a/Scripts/Bash/Functions/Help/help_updateOutputFilePlaintext.sh
+++ b/Scripts/Bash/Functions/Help/help_updateOutputFilePlaintext.sh
@@ -34,7 +34,6 @@ function help_updateOutputFilePlaintext {
 
     # Update plaintext output directory.
     /usr/bin/makeinfo ${MANUALS_FILE[1]} --output=${MANUALS_FILE[5]} \
-        --plaintext \
-        -I=/home/centos/artwork
+        --plaintext
 
 }