Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xxx-R6-1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue 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
synApps_6_1_Working
xxx-R6-1
Commits
3234d66d
Commit
3234d66d
authored
6 years ago
by
prjemian
Browse files
Options
Downloads
Patches
Plain Diff
#14 use $0 as default if $BASH_SOURCE is undefined
parent
b4264682
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
iocBoot/iocxxx/softioc/xxx.sh
+1
-1
1 addition, 1 deletion
iocBoot/iocxxx/softioc/xxx.sh
start_MEDM_xxx
+1
-1
1 addition, 1 deletion
start_MEDM_xxx
start_caQtDM_xxx
+1
-1
1 addition, 1 deletion
start_caQtDM_xxx
with
3 additions
and
3 deletions
iocBoot/iocxxx/softioc/xxx.sh
+
1
−
1
View file @
3234d66d
...
...
@@ -40,7 +40,7 @@ PS=ps
#####################################################################
SNAME
=
$
0
SNAME
=
$
{
BASH_SOURCE
:-
$0
}
SELECTION
=
$1
if
[
-z
"
$IOC_STARTUP_DIR
"
]
...
...
This diff is collapsed.
Click to expand it.
start_MEDM_xxx
+
1
−
1
View file @
3234d66d
#!/bin/bash
export
EPICS_APP
=
`
dirname
$
0
`
export
EPICS_APP
=
`
dirname
$
{
BASH_SOURCE
:-
$0
}
`
export
EPICS_APP_ADL_DIR
=
${
EPICS_APP
}
/xxxApp/op/adl
export
DEFAULT_UI_FILE
=
${
DEFAULT_UI_FILE
:-
xxx
.adl
}
...
...
This diff is collapsed.
Click to expand it.
start_caQtDM_xxx
+
1
−
1
View file @
3234d66d
#!/bin/bash
export
EPICS_APP
=
`
dirname
$
0
`
export
EPICS_APP
=
`
dirname
$
{
BASH_SOURCE
:-
$0
}
`
export
EPICS_APP_UI_DIR
=
${
EPICS_APP
}
/xxxApp/op/ui
export
DEFAULT_UI_FILE
=
${
DEFAULT_UI_FILE
:-
xxx
.ui
}
...
...
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