Infrastructure: Implement master/dev/vX branching, save git path, and fix username casing
This commit is contained in:
14
scratch/copy_logo.py
Normal file
14
scratch/copy_logo.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import shutil
|
||||
import os
|
||||
|
||||
src = "/Users/danielbedeleanu/.gemini/antigravity/brain/edc2a8fe-a092-4172-b93b-b75c7b690fac/media__1775837015390.jpg"
|
||||
dst = "/Users/danielbedeleanu/_nu_Backup/_BEDE_/_programare_2026_/cu.AI/inventory/frontend/public/logo.png"
|
||||
|
||||
try:
|
||||
if os.path.exists(src):
|
||||
shutil.copyfile(src, dst)
|
||||
print("Logo copied successfully.")
|
||||
else:
|
||||
print(f"Source file not found at {src}")
|
||||
except Exception as e:
|
||||
print(f"Error copying logo: {e}")
|
||||
Reference in New Issue
Block a user