Skip to content

Commit c292944

Browse files
author
Hernán Morales Durand
committed
Release v0.7.3
1 parent 6cf955f commit c292944

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [0.7.3](https://github.com/hernanmd/pi/compare/0.7.2...0.7.3)
8+
79
#### [0.7.2](https://github.com/hernanmd/pi/compare/0.7.1...0.7.2)
810

11+
> 28 December 2022
12+
13+
- Release v0.7.2 [`6cf955f`](https://github.com/hernanmd/pi/commit/6cf955fc8ee5e57eacc95e2720d65ed98b01ec83)
14+
915
#### [0.7.1](https://github.com/hernanmd/pi/compare/0.7.0...0.7.1)
1016

1117
> 26 December 2022

DATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
28-12-2022
1+
29-12-2022

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.3
1+
l

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
readonly ERR_INVALID_USAGE=2
99
readonly tmpDir="$(mktemp -d -t pi-tarball-unpack.XXXXXXXXXX || \
10-
oops "Can't create temporary directory for downloading the Pi tarball")"
10+
oops "Can't create temporary directory for downloading the PI tarball")"
1111

1212
require_util() {
1313
command -v "$1" > /dev/null 2>&1 ||

libexec/piPharo.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,17 +158,13 @@ trun_pharo () {
158158
# Trash pharo-local (requires trash utility) and run Pharo.image
159159
nrun_pharo () {
160160
dirname=$(date +%Y-%m-%d-%S)
161-
mkdir -v "$dirname"
162-
cd "$dirname"
163-
irun_pharo
161+
(mkdir -v "$dirname" && cd "$dirname" && irun_pharo) || pi_log "Cannot run Pharo Image"
164162
}
165163

166164
# Install latest Pharo in a new timestamed directory and run Pharo.image
167165
nlrun_pharo () {
168166
dirname=$(date +%Y-%m-%d-%S)
169-
mkdir -v "$dirname"
170-
cd "$dirname"
171-
lrun_pharo
167+
(mkdir -v "$dirname" && cd "$dirname" && lrun_pharo) || pi_log "Cannot run Pharo Image"
172168
}
173169

174170
download_pharo () {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pi",
3-
"version": "0.7.2",
3+
"version": "0.7.3",
44
"description": "",
55
"main": "index.js",
66
"type": "module",

0 commit comments

Comments
 (0)