another go at other types
diff --git a/scripts/AAG Version/drc-gds-sky130A.sh b/scripts/AAG Version/drc-gds-sky130A.sh
index 7a4d474..0a86528 100644
--- a/scripts/AAG Version/drc-gds-sky130A.sh
+++ b/scripts/AAG Version/drc-gds-sky130A.sh
@@ -13,15 +13,15 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# To call: ./run_drc_checks.sh <target_path> <design_name> <pdk-path> [<output_path> default is <target_path>/results/]
+# To call: ./drc-gds-sky130A.sh <target_path> <design_name> <pdk-root> [<output_path> default is <target_path>/results/]
 
 export TARGET_DIR=$1
 export DESIGN_NAME=$2
-export PDKPATH=$3
+export PDK_ROOT=$3
 export OUT_DIR=${4:-$TARGET_DIR/results/}
 
 if ! [[ -d "$OUT_DIR" ]]
 then
     mkdir $OUT_DIR
 fi
-bash ./magic-drc.sh $TARGET_DIR $DESIGN_NAME $PDKPATH "gds" "sky130A" $OUT_DIR
+bash ./magic-drc.sh $TARGET_DIR $DESIGN_NAME $PDK_ROOT "gds" "sky130A" $OUT_DIR