Przeglądaj źródła

fix gitignore (#8246)

* Fix git ignoring script/build

Signed-off-by: Alex Peterson <[email protected]>

* Fix logging reporting incorrect upload url

Signed-off-by: Alex Peterson <[email protected]>

* Add new-line at end of file to .gitignore

Signed-off-by: Alex Peterson <[email protected]>
Alex Peterson 3 lat temu
rodzic
commit
c577d3fd65

+ 1 - 1
.gitignore

@@ -2,7 +2,7 @@
 .vs/
 .vscode/
 __pycache__
-[Bb]uild/
+/[Bb]uild
 [Oo]ut/**
 CMakeUserPresets.json
 [Cc]ache/

+ 5 - 0
AutomatedTesting/.gitignore

@@ -0,0 +1,5 @@
+[Bb]uild/
+[Cc]ache/
+[Uu]ser/
+[Uu]ser_test*/
+_savebackup/

+ 1 - 1
Templates/DefaultProject/Template/.gitignore

@@ -2,4 +2,4 @@
 [Cc]ache/
 [Uu]ser/
 [Uu]ser_test*/
-_savebackup/
+_savebackup/

+ 1 - 1
Templates/MinimalProject/Template/.gitignore

@@ -1,4 +1,4 @@
 [Bb]uild/
 [Cc]ache/
 [Uu]ser/
-_savebackup/
+_savebackup/

+ 2 - 2
cmake/Platform/Common/PackagingPostBuild_common.cmake

@@ -21,7 +21,7 @@ endfunction()
 
 function(ly_upload_to_url in_url in_local_path in_file_regex)
 
-    message(STATUS "Uploading ${in_local_path}/${in_file_regex} artifacts to ${CPACK_UPLOAD_URL}")
+    message(STATUS "Uploading ${in_local_path}/${in_file_regex} artifacts to ${in_url}")
     ly_is_s3_url(${in_url} _is_s3_bucket)
     if(NOT _is_s3_bucket)
         message(FATAL_ERROR "Only S3 installer uploading is supported at this time")
@@ -111,4 +111,4 @@ function(ly_upload_to_latest in_url in_path)
     file(REMOVE_RECURSE ${temp_dir})
     message(STATUS "Latest build update complete!")
 
-endfunction()
+endfunction()