Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
postmarketos-mkinitfs
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
postmarketos-mkinitfs
Commits
b54044a6
Unverified
Commit
b54044a6
authored
1 year ago
by
Caleb Connolly
Browse files
Options
Downloads
Patches
Plain Diff
hookscripts: glob hook directories
parent
f0544999
Branches
recurse-hooks
No related tags found
1 merge request
!35
Draft: Allow nested hook directories
Pipeline
#142960
passed
1 year ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
internal/filelist/filelist.go
+1
-1
1 addition, 1 deletion
internal/filelist/filelist.go
internal/filelist/hookscripts/hookscripts.go
+7
-2
7 additions, 2 deletions
internal/filelist/hookscripts/hookscripts.go
with
8 additions
and
3 deletions
internal/filelist/filelist.go
+
1
−
1
View file @
b54044a6
...
...
@@ -51,7 +51,7 @@ func (f *FileList) Import(src *FileList) {
}
}
func
(
f
*
FileList
)
AddGlobbed
(
src
string
,
dest
string
)
(
error
)
{
func
(
f
*
FileList
)
AddGlobbed
(
src
string
,
dest
string
)
error
{
fFiles
,
err
:=
misc
.
GetFiles
([]
string
{
src
},
true
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"unable to add %q: %w"
,
src
,
err
)
...
...
This diff is collapsed.
Click to expand it.
internal/filelist/hookscripts/hookscripts.go
+
7
−
2
View file @
b54044a6
...
...
@@ -35,8 +35,13 @@ func (h *HookScripts) List() (*filelist.FileList, error) {
}
for
_
,
file
:=
range
fileInfo
{
path
:=
filepath
.
Join
(
h
.
scriptsDir
,
file
.
Name
())
log
.
Printf
(
"-- Including script: %s
\n
"
,
path
)
files
.
Add
(
path
,
filepath
.
Join
(
h
.
destPath
,
file
.
Name
()))
if
file
.
IsDir
()
{
log
.
Printf
(
"-- Including dir %s
\n
"
,
path
)
files
.
AddGlobbed
(
filepath
.
Join
(
path
,
"*"
),
filepath
.
Join
(
h
.
destPath
,
file
.
Name
()))
}
else
{
log
.
Printf
(
"-- Including script: %s
\n
"
,
path
)
files
.
Add
(
path
,
filepath
.
Join
(
h
.
destPath
,
file
.
Name
()))
}
}
return
files
,
nil
}
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