Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pre-release-database-cdb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
pre-release-database-cdb
Commits
89551fd4
Commit
89551fd4
authored
Jun 14, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
3e47b031
Pipeline
#37591
failed with stages
in 1 minute and 36 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
No files found.
.gitlab-ci.yml
View file @
89551fd4
...
@@ -58,7 +58,7 @@ add_script_diff:
...
@@ -58,7 +58,7 @@ add_script_diff:
echo "File $target already exists, skipping copy."
echo "File $target already exists, skipping copy."
elif [ -f "$1" ]; then
elif [ -f "$1" ]; then
echo "Copying $1 to $target"
echo "Copying $1 to $target"
cp
-rn
"$1" ../script/
cp "$1" ../script/
else
else
echo "File $1 not found, skipping."
echo "File $1 not found, skipping."
fi
fi
...
@@ -68,7 +68,7 @@ add_script_diff:
...
@@ -68,7 +68,7 @@ add_script_diff:
done
done
for file in $(git diff --name-only --diff-filter=M FETCH_HEAD -- '*.lua'); do
for file in $(git diff --name-only --diff-filter=M FETCH_HEAD -- '*.lua'); do
if [ -f "$file" ]; then
if [ -f "$file" ]; then
current_time
=$(git log -1 --format="%ct" HEAD -- "$file")
current_time=$(git log -1 --format="%ct" HEAD -- "$file")
stable_time=$(git log -1 --format="%ct" FETCH_HEAD -- "$file")
stable_time=$(git log -1 --format="%ct" FETCH_HEAD -- "$file")
if [ -n "$current_time" ] && [ -n "$current_time" ] && [ "$current_time" -lt "$stable_time" ]; then
if [ -n "$current_time" ] && [ -n "$current_time" ] && [ "$current_time" -lt "$stable_time" ]; then
echo "File $file is older than stable/master, skipping copy."
echo "File $file is older than stable/master, skipping copy."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment