diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-10 21:13:29 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-10 21:13:29 +0200 |
commit | 0bf5c6fa3ae9bfbb560fbebfa5712c4ca60ed10b (patch) | |
tree | f3f548f033453281930f4177cc313b3dc7a38637 /Kernel/build-root-filesystem.sh | |
parent | b3d431e3906014644e936232029f9a8a11332e68 (diff) | |
download | serenity-0bf5c6fa3ae9bfbb560fbebfa5712c4ca60ed10b.zip |
Demos: Add a HelloWorld2 demo.
This is a simple test app with its UI generated from a VisualBuilder form.
The name is probably silly, but who cares. :^)
Diffstat (limited to 'Kernel/build-root-filesystem.sh')
-rwxr-xr-x | Kernel/build-root-filesystem.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh index 9bddcafc71..b523f03a58 100755 --- a/Kernel/build-root-filesystem.sh +++ b/Kernel/build-root-filesystem.sh @@ -77,6 +77,7 @@ cp ../Applications/TextEditor/TextEditor mnt/bin/TextEditor cp ../Applications/PaintBrush/PaintBrush mnt/bin/PaintBrush cp ../Applications/QuickShow/QuickShow mnt/bin/QuickShow cp ../Demos/HelloWorld/HelloWorld mnt/bin/HelloWorld +cp ../Demos/HelloWorld2/HelloWorld2 mnt/bin/HelloWorld2 cp ../Demos/RetroFetch/RetroFetch mnt/bin/RetroFetch cp ../Demos/WidgetGallery/WidgetGallery mnt/bin/WidgetGallery cp ../Demos/Fire/Fire mnt/bin/Fire @@ -94,6 +95,7 @@ echo -n "installing shortcuts... " ln -s Downloader mnt/bin/dl ln -s FileManager mnt/bin/fm ln -s HelloWorld mnt/bin/hw +ln -s HelloWorld2 mnt/bin/hw2 ln -s IRCClient mnt/bin/irc ln -s Minesweeper mnt/bin/ms ln -s Shell mnt/bin/sh |