-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efbf9c5
commit 30b258a
Showing
2 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Hello!!!!!!!!! Very epic settings text that was wrapped { "repositories": [ "hbb1.oscwii.org" ] } { "repositories": [ "hbb1.oscwii.org" ] } { "repositories": [ "hbb1.oscwii.org" ] } { "repositories": [ "hbb1.oscwii.org" ] } { "repositories": [ "hbb1.oscwii.org" ] } | ||
Hi... The settings aren't implemented yet. Please come back later. (When the software updates, preferably.) In the meantime, if you need to change repositories, please modify the config.json file in the /apps/libreshop directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,29 @@ | ||
#!/bin/bash | ||
|
||
cd "$(dirname "$0")" | ||
export "LINE==============================================================================" | ||
|
||
read -d "" acknowledgements << EOF | ||
Hello!!!!!!!!! | ||
Very epic settings text that was wrapped | ||
# ========================================================================= # | ||
IFS= read -d "" acknowledgements << EOF | ||
Hi... The settings aren't implemented yet. Please come back later. | ||
(When the software updates, preferably.) | ||
In the meantime, if you need to change repositories, please modify | ||
the config.json file in the /apps/libreshop directory. | ||
EOF | ||
|
||
for i in 1 2 3 4 5; do | ||
export "acknowledgements+= | ||
$(< default_config.json)" | ||
done | ||
#export "acknowledgements+= | ||
# | ||
#appended" | ||
|
||
# wrap it for the Wii | ||
echo -n > acknowledgements.json | ||
echo "acknowledgements.json" | ||
echo "+-----------------------------------------------------------------------------+" | ||
while IFS= read -r p; do | ||
printf "|%-77s|\n" "${p}" | ||
printf "%-77s" "${p}" >> acknowledgements.json | ||
done <<< "${acknowledgements}" | ||
echo "+-----------------------------------------------------------------------------+" |