This commit is contained in:
HuangHai
2026-01-21 07:56:18 +08:00
parent 9d1ce0c3c5
commit 306a3a4127
3 changed files with 13 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
#!/bin/bash
# 环境变量补丁 (针对 Crontab 环境下可能找不到 java 的问题)
export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
[ -f /etc/profile ] && . /etc/profile
[ -f ~/.bash_profile ] && . ~/.bash_profile
[ -f ~/.profile ] && . ~/.profile
# 配置路径
DATAX_HOME="/usr/local/datax"
# 获取当前脚本所在目录

View File

@@ -1,5 +1,11 @@
#!/bin/bash
# 环境变量补丁 (针对 Crontab 环境下可能找不到 java 的问题)
export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
[ -f /etc/profile ] && . /etc/profile
[ -f ~/.bash_profile ] && . ~/.bash_profile
[ -f ~/.profile ] && . ~/.profile
# 配置路径
DATAX_HOME="/usr/local/datax"
# 获取当前脚本所在目录

View File

@@ -66,7 +66,7 @@ body {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 20px;
padding: 40px 30px;
padding: 32px 30px;
text-align: left;
text-decoration: none;
color: inherit;
@@ -109,7 +109,6 @@ body {
color: var(--text-secondary);
line-height: 1.6;
margin: 0;
flex-grow: 1;
}
.card-arrow {