Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
inferior-shell
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
qitab
inferior-shell
Commits
c5a58f30
Commit
c5a58f30
authored
9 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
2.0.3: use error, not signal, to re-signal errors from run-program.
parent
7f006053
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inferior-shell.asd
+1
-1
1 addition, 1 deletion
inferior-shell.asd
run.lisp
+1
-1
1 addition, 1 deletion
run.lisp
with
2 additions
and
2 deletions
inferior-shell.asd
+
1
−
1
View file @
c5a58f30
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
(
defsystem
"inferior-shell"
(
defsystem
"inferior-shell"
:description
"spawn local or remote processes and shell pipes"
:description
"spawn local or remote processes and shell pipes"
:version
"2.0.
2
"
:version
"2.0.
3
"
:defsystem-depends-on
(
:asdf
#-
asdf3
"uiop"
)
:defsystem-depends-on
(
:asdf
#-
asdf3
"uiop"
)
:depends-on
((
:version
#+
asdf3
"asdf"
#-
asdf3
"uiop"
"3.0.3"
)
; input and error-output redirection
:depends-on
((
:version
#+
asdf3
"asdf"
#-
asdf3
"uiop"
"3.0.3"
)
; input and error-output redirection
#+
sbcl
"sb-posix"
#+
sbcl
"sb-posix"
...
...
This diff is collapsed.
Click to expand it.
run.lisp
+
1
−
1
View file @
c5a58f30
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
&key
time
show
host
(
on-error
t
)
&key
time
show
host
(
on-error
t
)
&allow-other-keys
)
&allow-other-keys
)
"run command CMD"
"run command CMD"
(
when
(
eq
on-error
t
)
(
setf
on-error
'
signal
))
(
when
(
eq
on-error
t
)
(
setf
on-error
'
error
))
(
when
show
(
when
show
(
format
*trace-output*
"; ~A~%"
(
print-process-spec
cmd
)))
(
format
*trace-output*
"; ~A~%"
(
print-process-spec
cmd
)))
(
flet
((
run-it
()
(
flet
((
run-it
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment