From 47e92e8d6387f3253df8a8d199f2c4652c8b482f Mon Sep 17 00:00:00 2001 From: Dennis Buchhorn Date: Tue, 18 Jan 2022 12:57:14 +0100 Subject: [PATCH] fix: correct tcl scripts path --- clean_and_recreate_all | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clean_and_recreate_all b/clean_and_recreate_all index 36fe592..c7c76c4 100755 --- a/clean_and_recreate_all +++ b/clean_and_recreate_all @@ -42,18 +42,18 @@ git checkout echo "############################################################" echo "# Create hardware platform ..." echo "############################################################" -xsct scripts/platform_create.tcl +xsct tcl_scripts/platform_create.tcl if [ $IMPORT_HW_PLATFORM_ONLY == "true" ]; then echo "############################################################" echo "# Import hw_platform only to workspace ..." echo "############################################################" - xsct scripts/import_platform_only.tcl + xsct tcl_scripts/import_platform_only.tcl else echo "############################################################" echo "# Import all projects to workspace ..." echo "############################################################" - xsct scripts/import_platform_and_projects.tcl + xsct tcl_scripts/import_platform_and_projects.tcl fi # Disable Vitis welcome screen