Accidentally used J instead of j with tar.
This commit is contained in:
parent
8b860ab407
commit
139f1d8fe3
1 changed files with 130 additions and 111 deletions
21
joeybuild.sh
21
joeybuild.sh
|
@ -126,6 +126,15 @@ function doBuild() {
|
|||
G_BUILD_PROJECT=
|
||||
PROJECT_TYPE=
|
||||
|
||||
# Sample project file:
|
||||
#
|
||||
# application
|
||||
# Warehouse
|
||||
# IIgs 65816
|
||||
# Linux i386 x86_64
|
||||
# Windows i686 x86_64
|
||||
# MacOS i386 x86_64 aarch64
|
||||
|
||||
# Read project information.
|
||||
while IFS= read -r LINE; do
|
||||
# If we don't have a project type, grab it from the first line of the project file and set things up.
|
||||
|
@ -207,7 +216,7 @@ function doBuild() {
|
|||
|
||||
# Compress the results.
|
||||
tBoldBox tPURPLE "Packaging \"${G_BUILD_PROJECT}\"..."
|
||||
tar cJf build.temp results
|
||||
tar cjf build.temp results
|
||||
tSudo chown ${USERNAME}:${USERNAME} build.temp
|
||||
|
||||
# Erase everything except the temp file.
|
||||
|
@ -384,6 +393,16 @@ function startBuildServer() {
|
|||
# Log startup.
|
||||
echo "$(date) - Startup ${0}" >>${LOG}
|
||||
|
||||
# Sample info file:
|
||||
#
|
||||
# 1.0
|
||||
# ------------------------------------------------------------------------------
|
||||
# project application "JoeyLib Application"
|
||||
# target IIgs "Apple IIgs" 65816
|
||||
# target Linux "Linux" i386 x86_64
|
||||
# target MacOS "Modern MacOS" i386 x86_64 aarch64
|
||||
# target Windows "Windows XP+" i686 x86_64
|
||||
|
||||
# Build supported project types and target details for JoeyDev.
|
||||
echo "1.0" >dist/joeydev.info
|
||||
echo "------------------------------------------------------------------------------" >>dist/joeydev.info
|
||||
|
|
Loading…
Add table
Reference in a new issue