Skip to content

Commit

Permalink
#221 Fix print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
singhd789 committed Dec 5, 2024
1 parent 6a99f4d commit a6dd493
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fre/make/create_checkout_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def checkout_create(yamlfile,platform,target,no_parallel_checkout,jobs,execute,v
os.system("mkdir -p " + src_dir)
# if the checkout script does not exist, it is created
if not os.path.exists(src_dir+"/checkout.sh"):
print("Creating checkout script...")
print("\nCreating checkout script...")
fre_checkout = baremetal_checkout_write_steps(model_yaml,src_dir,jobs,pc)

# Run the checkout script
Expand All @@ -116,7 +116,7 @@ def checkout_create(yamlfile,platform,target,no_parallel_checkout,jobs,execute,v
shutil.rmtree(src_dir)

# Create checkout script
print("Re-creating the checkout script...\n")
print("Re-creating the checkout script...")
fre_checkout = baremetal_checkout_write_steps(model_yaml,src_dir,jobs,pc)
else:
print("\nCheckout script PREVIOUSLY created in "+ src_dir + "/checkout.sh \n")
Expand Down

0 comments on commit a6dd493

Please sign in to comment.