Skip to content

Commit d968d93

Browse files
committed
documentation update
1 parent 6a20c28 commit d968d93

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
archive/
22
build-peb-*/
33
resources/app/perl
4+
squashfs-root
45
src/tmp
56

67
.qmake.stash
@@ -11,6 +12,7 @@ peb.pro.*
1112
peb
1213
peb.exe
1314
*.AppImage
15+
*.zip
1416

1517
backup
1618
upgit

README.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@ in the documentation of this project are to be interpreted as described in [RFC
5454

5555
64-bit Linux:
5656
```bash
57-
peb-demo-xx.AppImage --appimage-extract
57+
./peb-demo-*.AppImage --appimage-extract
5858
```
5959

60-
Windows:
60+
Windows:
6161
Unzip using any Windows unzip utility.
6262

6363
* **3.** Optionally install any CPAN modules you may need:
6464

65-
64-bit Linux - from the extracted ``peb-demo`` directory:
65+
64-bit Linux:
6666
```bash
67-
cd resources/app/perl/bin
67+
cd squashfs-root/resources/app/perl/bin
6868
./perl ./cpanm YourModule
6969
```
7070

@@ -87,14 +87,17 @@ in the documentation of this project are to be interpreted as described in [RFC
8787
Start local Perl scripts by [clicking a link or submitting a form to a special URL](./doc/SETTINGS.md#perl-scripts-api).
8888
[Select files or folders with their full paths by clicking a link to a special URL](./doc/SETTINGS.md#selecting-files-and-folders).
8989

90-
* **6.** Optionally pack your application:
90+
* **6.** Optionally change the [PEB AppImage configuration files](./doc/APPIMAGE.md#peb-appimage-configuration-files).
91+
92+
* **7.** Optionally pack your application:
9193

92-
64-bit Linux - from the extracted ``peb-demo`` directory:
94+
64-bit Linux - from the extracted ``squashfs-root`` directory:
9395
```bash
94-
./appimager.sh
96+
export VERSION="X.X.X" && ./appimager.sh
9597
```
98+
The resulting AppImage will be produced in the ``squashfs-root`` directory.
9699

97-
Windows:
100+
Windows:
98101
Zip your PEB-based application using any Windows zip utility.
99102

100103
## Design Objectives

resources/app/perl-scripts/open-directory.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
my $directory_name = <STDIN>;
2222
chomp $directory_name;
2323

24-
my $files;
25-
my $subdirectories;
24+
my $files = 0;
25+
my $subdirectories = 0;
2626

2727
traverse ($directory_name);
2828

0 commit comments

Comments
 (0)