Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
detectors
athena
Commits
820f9465
Commit
820f9465
authored
3 years ago
by
Wouter Deconinck
Committed by
Wouter Deconinck
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Uncomment positional argument storing
parent
6fe429a0
No related branches found
No related tags found
1 merge request
!170
Make view12/14/15 parallel (one slice per job)
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scripts/view12/generate_eps
+2
-2
2 additions, 2 deletions
scripts/view12/generate_eps
scripts/view14/generate_eps
+2
-2
2 additions, 2 deletions
scripts/view14/generate_eps
scripts/view15/generate_eps
+2
-2
2 additions, 2 deletions
scripts/view15/generate_eps
with
6 additions
and
6 deletions
scripts/view12/generate_eps
+
2
−
2
View file @
820f9465
...
...
@@ -49,13 +49,13 @@ do
shift
# past value
;;
-[a-zA-Z]
*
)
# unknown option
#
POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
echo
"unknown option
$1
"
print_the_help
shift
# past argument
;;
*
)
# positional options
#
POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
shift
# past argument
;;
esac
...
...
This diff is collapsed.
Click to expand it.
scripts/view14/generate_eps
+
2
−
2
View file @
820f9465
...
...
@@ -54,13 +54,13 @@ do
shift
# past value
;;
-[a-zA-Z]
*
)
# unknown option
#
POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
echo
"unknown option
$1
"
print_the_help
shift
# past argument
;;
*
)
# positional options
#
POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
shift
# past argument
;;
esac
...
...
This diff is collapsed.
Click to expand it.
scripts/view15/generate_eps
+
2
−
2
View file @
820f9465
...
...
@@ -54,13 +54,13 @@ do
shift
# past value
;;
-[a-zA-Z]
*
)
# unknown option
#
POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
echo
"unknown option
$1
"
print_the_help
shift
# past argument
;;
*
)
# positional options
#
POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
shift
# past argument
;;
esac
...
...
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