Skip to content

Commit

Permalink
ci: mark default arch [amd64]
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackhr-arch committed Sep 6, 2024
1 parent 8254781 commit 8ff636f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ dependencies = ["clear-artifacts", "arm64", "amd64", "build_deb"]
script = '''
mkdir artifacts
cp target/debian/*.deb artifacts/clashtui.deb
cp target/release/clashtui artifacts/clashtui.release
cp target/debug/clashtui artifacts/clashtui.debug
cp target/release/clashtui artifacts/clashtui.amd64.release
cp target/debug/clashtui artifacts/clashtui.amd64.debug
cp target/aarch64-unknown-linux-gnu/release/clashtui artifacts/clashtui.arm64.release
cp target/aarch64-unknown-linux-gnu/debug/clashtui artifacts/clashtui.arm64.debug
'''
Expand Down
8 changes: 4 additions & 4 deletions src/bin/clashtui/tui/frontend/tabs/profile/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ pub enum ProfileOp {
/// Send after [ProfileOp::Update],[ProfileOp::Add],[ProfileOp::Remove]
/// and [TemplateOp::Generate] if enable template feature
GetALL,
/// go wwithout ask
/// go without ask
Select(String),
/// go wwithout ask
/// go without ask
Add(String, String),
/// ask for two option(`Yes/No`)
Remove(String),
Expand All @@ -36,9 +36,9 @@ pub enum ProfileOp {
pub enum TemplateOp {
/// Send after [TemplateOp::Add],[TemplateOp::Remove]
GetALL,
/// go wwithout ask
/// go without ask
Generate(String),
/// go wwithout ask
/// go without ask
Add(String),
/// ask for two option(`Yes/No`)
Remove(String),
Expand Down

0 comments on commit 8ff636f

Please sign in to comment.