The files being uploaded are the current versions of the files from argon40. These files are being archived as I want to be able to reference them from time to time. Also I can compare the files that were ship with the proto type.
15 lines
267 B
Bash
15 lines
267 B
Bash
#!/bin/bash
|
|
|
|
VERSIONINFO="2601005"
|
|
|
|
echo "Version $VERSIONINFO"
|
|
if [ -z "$1" ]
|
|
then
|
|
echo
|
|
echo "We acknowledge the valuable feedback of the following:"
|
|
echo "ghalfacree, NHHiker"
|
|
echo
|
|
echo "Feel free to join the discussions at https://forum.argon40.com"
|
|
echo
|
|
fi
|