From ba1d0fa479381145c3f957dc9e97ace37c0a78cc Mon Sep 17 00:00:00 2001 From: mid-kid Date: Mon, 18 Jul 2016 14:45:01 +0200 Subject: [PATCH] Small fix in examples --- astronaut/examples/hello.sat | 14 +++++++------- astronaut/template.sat | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/astronaut/examples/hello.sat b/astronaut/examples/hello.sat index e7f1574..bbb7a33 100644 --- a/astronaut/examples/hello.sat +++ b/astronaut/examples/hello.sat @@ -1,6 +1,6 @@ # Example of a satellite file, which is just a shell script with a cool name. -import "say_hello" # Import some functions. See functions/say_hello.sh for more info. +import 'say_hello' # Import some functions. See functions/say_hello.sh for more info. # Info (Please declare it, as it will be used outside of this script, too) # Required info @@ -46,19 +46,19 @@ define_option 'test=Default value' # It is also allowed to provide no descripti # Get them files. # URL [REQUIRED], MD5sum, Custom command download "https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz" \ - "6cd0ffea3884a4e79330338dcc2987d6" \ - "curl -L -o {dst} {src}" + '6cd0ffea3884a4e79330338dcc2987d6' \ + 'curl -L -o {dst} {src}' # Abbreviation download and extract. Does not allow custom commands. #dlextract "https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz" \ -# "6cd0ffea3884a4e79330338dcc2987d6" +# '6cd0ffea3884a4e79330338dcc2987d6' # Abbreviation for downloading a file and copying it over. -#dlfile "http://example.com/Waffles.txt" \ -# "MD5SUM" +#dlfile 'http://example.com/Waffles.txt' \ +# 'MD5SUM' # Copy local file to build directory. File should be stored in $(basedir )/extrafiles/$name/ -#extrafile "Herpaderp.txt" +#extrafile 'Herpaderp.txt' header_end # End of the header. # The only commands that should be in the header are: diff --git a/astronaut/template.sat b/astronaut/template.sat index 65b1b67..3e96efe 100644 --- a/astronaut/template.sat +++ b/astronaut/template.sat @@ -7,7 +7,7 @@ update_url="https://ftp.gnu.org/gnu/$name/" define_option '!check: Enable the testsuite.' dlextract "https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz" \ - "6cd0ffea3884a4e79330338dcc2987d6" + '6cd0ffea3884a4e79330338dcc2987d6' header_end cd "$name-$version"