Skip to content

Commit 719edc8

Browse files
authored
Merge pull request #71 from botero-dev/test-readme
Misc fixes to build script and readme
2 parents 303d47f + 526b334 commit 719edc8

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ Support
6262
To support the project, please consider joining as a Github Sponsor clicking the
6363
button in the sidebar.
6464

65-
To get support for the plugin, join the [1](Discord server).
65+
To get support for the plugin, join the [Discord server].
6666

67-
[1]: https://discord.gg/JnuAJcEwCb
67+
[Discord server]: https://discord.gg/JnuAJcEwCb
6868

6969
If you identified a bug and you have consistent repro steps, you can submit an
7070
issue in Github. Please attach any project files that can be used to reproduce

scripts/package_standalone.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ echo unzip build/mac.zip -d build/mac
2020
unzip build/mac.zip -d build/mac >> /dev/null
2121
chmod -R u+X "build/mac"
2222

23-
release_path="export/standalone"
24-
rm -rf "$release_path"
25-
mkdir -p "$release_path"
23+
export_base_path="export"
24+
rm -rf "$export_base_path"
25+
mkdir -p "$export_base_path"
2626

2727
product_name="bl_datasmith"
2828
monotonic="$BUILD_NUMBER"
2929

30-
blender_export_path="$export_path/$product_name-$monotonic-blender.zip"
30+
blender_export_path="$export_base_path/$product_name-$monotonic-blender.zip"
3131
cp "build/$product_name-blender.zip" "$blender_export_path"
3232

3333
engine_versions="UE_5.4 UE_5.5 UE_5.6 UE_5.7"
@@ -37,7 +37,7 @@ base=$(pwd)
3737
for engine_version in $engine_versions; do
3838
cd "$base"
3939
echo "Exporting for $engine_version"
40-
export_path="$release_path/$engine_version"
40+
export_path="$export_base_path/$engine_version"
4141

4242
rm -rf "$export_path"
4343

0 commit comments

Comments
 (0)