Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit c8a3b58

Browse files
authored
Merge pull request #10 from Saritasa/feature/UTD-354-add-keystore-folder
Feature/utd 354 add keystore folder
2 parents a049ce7 + 89d28c0 commit c8a3b58

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

{{cookiecutter.project_name}}/.gitignore

+3-4
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,9 @@ Thumbs.db
4646
!src/*/Assets/UserWorkspace
4747
src/*/Assets/UserWorkspace/*
4848
!src/*/Assets/UserWorkspace/.gitkeep
49-
50-
!src/*/Assets/UserWorkspace/Keystore
51-
src/*/Assets/UserWorkspace/Keystore/*
52-
!src/*/Assets/UserWorkspace/Keystore/.gitkeep
49+
!src/*/Assets/UserWorkspace/Keystores
50+
src/*/Assets/UserWorkspace/Keystores/*
51+
!src/*/Assets/UserWorkspace/Keystores/KeystoreLink.txt
5352

5453
# ================= #
5554
# Exlude docs build #

{{cookiecutter.project_name}}/artifacts/KeystoreLink.txt

Whitespace-only changes.

{{cookiecutter.project_name}}/scripts/AssetsFolderStructure.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pathToGenerate=""
88
#Functions
99
generate_folders_structure()
1010
{
11-
mkdir -p "$pathToGenerate"/{Audio,Editor,Models,Plugins,Scenes,Scripts/API,Shaders,UI,UserWorkspace,Vendors,UserWorkspace/Keystore}
11+
mkdir -p "$pathToGenerate"/{Audio,Editor,Models,Plugins,Scenes,Scripts/API,Shaders,UI,UserWorkspace,Vendors}
1212

1313
touch "$pathToGenerate"/Audio/.gitkeep
1414
touch "$pathToGenerate"/Editor/.gitkeep
@@ -21,7 +21,6 @@ generate_folders_structure()
2121
touch "$pathToGenerate"/UI/.gitkeep
2222
touch "$pathToGenerate"/UserWorkspace/.gitkeep
2323
touch "$pathToGenerate"/Vendors/.gitkeep
24-
touch "$pathToGenerate"/UserWorkspace/Keystore/.gitkeep
2524

2625
echo "Generation succeeded"
2726
}

0 commit comments

Comments
 (0)