From a763447de4cce932a9498c8bb2b917502778d1ef Mon Sep 17 00:00:00 2001 From: t-karasova <91195610+t-karasova@users.noreply.github.com> Date: Wed, 16 Mar 2022 11:57:50 +0100 Subject: [PATCH] chore: fix for the import data to the catalog script (#190) * create_test_resources path to schemas is fixed * Update user_import_data_to_catalog.sh Co-authored-by: Anthonios Partheniou --- .../interactive-tutorials/user_import_data_to_catalog.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/interactive-tutorials/user_import_data_to_catalog.sh b/samples/interactive-tutorials/user_import_data_to_catalog.sh index 022d6a68..f715b2c1 100644 --- a/samples/interactive-tutorials/user_import_data_to_catalog.sh +++ b/samples/interactive-tutorials/user_import_data_to_catalog.sh @@ -17,8 +17,8 @@ # Change the working directory current_path=$(pwd) temp_path="${current_path%cloudshell_open*}" -full_path=temp_path"cloudshell_open/python-retail/samples/interactive-tutorials/product" - +full_path=$temp_path"cloudshell_open/python-retail/samples/interactive-tutorials/product" +cd $full_path # Create a GCS bucket and upload the product data to the bucket output=$(python setup_product/products_create_gcs_bucket.py) @@ -30,4 +30,4 @@ export BUCKET_NAME=$bucket_name # Import products to the Retail catalog python import_products_gcs.py echo "Products are successfully imported to catalog" -echo "Your Retail catalog is ready to use!" \ No newline at end of file +echo "Your Retail catalog is ready to use!"