Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lyz
backupninja
Commits
413a3be0
You need to sign in or sign up before continuing.
Commit
413a3be0
authored
19 years ago
by
elijah
Browse files
Options
Downloads
Patches
Plain Diff
added bug warning in comments
parent
ca36fe14
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/easydialog.in
+11
-0
11 additions, 0 deletions
lib/easydialog.in
with
11 additions
and
0 deletions
lib/easydialog.in
+
11
−
0
View file @
413a3be0
...
...
@@ -244,6 +244,17 @@ formDisplay() {
) | xargs $DIALOG 2> $temp
local status=$?
##
## the exit status is meaningless, it is always 0.
## i can't figure out how to get the exit status of dialog
## if we do "dialog `arg code`" or "dialog $args", then the quotes
## get messed up and dialog won't run.
## if we do "(arg code) | xargs dialog", then the exit status is
## swallowed by xargs. xargs should return different exit status
## depending on the exit status of the command run, but i have
## never been able to get that to work.
##
REPLY=
if [ $status = 0 ]; then
IFS=$''
...
...
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