Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
howto-cards
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Roland Krause
howto-cards
Commits
344f3d72
Verified
Commit
344f3d72
authored
3 years ago
by
Laurent Heirendt
Browse files
Options
Downloads
Patches
Plain Diff
add exception handling if whitelist does not exist
parent
0dd6d30e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.ci/generateIndex.py
+5
-3
5 additions, 3 deletions
.ci/generateIndex.py
with
5 additions
and
3 deletions
.ci/generateIndex.py
+
5
−
3
View file @
344f3d72
import
os
,
re
from
os
import
path
from
natsort
import
natsorted
from
pathlib
import
Path
def
line_prepender
(
filename
,
line
):
with
open
(
filename
,
'
r+
'
)
as
f
:
...
...
@@ -236,9 +237,10 @@ print("\n > New index generated and saved in " + indexFile)
# write link whitelist out
whiteListFile
=
"
.ci/whitelist.txt
"
with
open
(
whiteListFile
,
'
r
'
)
as
file
:
for
line
in
file
:
whiteList
+=
line
if
Path
(
whiteListFile
).
exists
():
with
open
(
whiteListFile
,
'
r
'
)
as
file
:
for
line
in
file
:
whiteList
+=
line
with
open
(
whiteListFile
,
'
w
'
)
as
file
:
file
.
write
(
whiteList
)
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