Bo-Yi.Wu
de6f344960
refactor: update Plugin Class Exec Method with Version Print Statement
...
- Add print of current version to Exec method of Plugin class
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2023-04-16 13:36:35 +08:00
Bo-Yi Wu
665c665298
refactor: remove unnecessary quotes in plugin build process ( #177 )
...
- Modify `rmcmd` and `mkdircmd` to remove unneeded quotes
- Update `buildUnTarArgs` in `plugin.go` to use target without quotes
- Add `Exec` function to `plugin.go` with `strings.Replace` call
- Update tests in `plugin_test.go` to use target without quotes
ref: https://github.com/appleboy/scp-action/issues/112
2023-04-16 12:05:23 +08:00
Bo-Yi Wu
c663c07449
feat: refactor plugin struct and add hostPort function with tests ( #176 )
...
- Change the `go` keyword to `gofmt` in line 259
- Add a new function `hostPort` to the `Plugin` struct
- Modify the `hostPort` function to set the port if it is specified in the host string
- Add 2 tests for `hostPort` function to `plugin_test.go`
ref https://github.com/appleboy/scp-action/issues/98
2023-04-16 11:29:15 +08:00
Bo-Yi Wu
fb4058bc55
chore(main): remove unused variable ( #175 )
2023-04-15 01:49:26 +08:00
Bo-Yi Wu
41313253fa
fix: improve support for folder names with spaces ( #174 )
...
- Add a test for a target folder with spaces in the name
- Fix a bug in the `buildUnTarArgs` function that caused it to fail when receiving a target with spaces
- Remove unused code in the `TestRemoveDestFile` function
ref https://github.com/appleboy/scp-action/issues/85
2023-04-11 12:54:53 +08:00
Bo-Yi.Wu
46df30d9ba
refactor: refactor system type checks in SSH commands
...
- Remove `uname` check for system type from `removeAllDestFile` function.
- Add `ver` check for SSH command in `Exec` function.
- Remove `uname` check for system type from `Exec` function.
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2023-04-10 21:00:36 +08:00
Bo-Yi.Wu
87ebe720f5
feat: improve server logging with OS type detection
...
- Add a log message with the remote server OS type
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2023-04-10 20:53:18 +08:00
Bo-Yi.Wu
f1301199ca
fix: refactor error handling and panic statements
...
- Remove error message for setting password and key at the same time
- Replace `errMissingHost` error check with a panic statement
ref: https://github.com/appleboy/scp-action/issues/86
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2023-04-09 17:03:48 +08:00
Bo-Yi Wu
6fd87e0460
refactor: add dereference flag ( #169 )
...
- Add a `--dereference` flag to use with tar
fix https://github.com/appleboy/drone-scp/issues/112
2023-04-09 15:49:32 +08:00
Bo-Yi.Wu
cf09357b85
build: refactor buildArgs function argument
...
- Change argument from `-xf` to `-zxf` in `buildArgs` function
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2023-04-09 13:39:39 +08:00
Bo-Yi Wu
9bfb71b9ef
build: compress build artifacts using gzip ( #168 )
...
- Change the compression format from `tar` to `tar.gz`
- Replace the flag `-cf` with `-zcf` in the `buildArgs` function
fix https://github.com/appleboy/drone-scp/issues/123
2023-04-09 12:38:12 +08:00
Bo-Yi.Wu
dd5f3b500f
refactor: refactor configuration file handling
...
- Remove the `trimPath` function
- Change `trimPath(p.Config.Source)` to `trimValues(p.Config.Source)`
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2023-04-09 09:50:39 +08:00
Bo-Yi.Wu
95b01590dc
refactor: refactor host configuration handling
...
- Replace the iteration over `p.Config.Host` with `trimValues(p.Config.Host)`
- Replace `len(p.Config.Host)` with `len(hosts)`
- Replace iteration over `p.Config.Host` with `for _, host := range hosts`
- Add `trimValues` function to trim spaces and empty values of a string slice
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2023-04-09 09:13:21 +08:00
Bo-Yi Wu
244b0a9e58
refactor: handling functions for cross-platform compatibility ( #166 )
...
- Change the `rmcmd` and `mkdircmd` functions to accept an OS parameter
- Remove `command_windows.go` file
- Modify `removeDestFile` and `Exec` functions to use the OS parameter
- Add OS detection logic to `removeAllDestFile` and `Exec` functions
- Modify `TestRemoveDestFile` function to use the OS parameter
fix https://github.com/appleboy/drone-scp/pull/119
2023-04-09 08:14:05 +08:00
Bo-Yi Wu
c309cf901d
chore(command): support windows ( #153 )
2023-02-03 17:12:57 +08:00
teutates
6d8c114979
feat(tar): add unlink-first flag ( #141 )
2022-12-29 21:15:21 +08:00
Bo-Yi.Wu
4a81a55a53
chore(lint): fix warning.
...
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
2022-12-29 21:10:16 +08:00
Bo-Yi Wu
731b24356e
chore(lint): check removeAllDestFile
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2021-10-23 18:30:17 +08:00
Bo-Yi Wu
4457897da5
chore: Support UseInsecureCipher ( #115 )
2020-05-24 14:17:43 +08:00
Bo-Yi Wu
f4fff01bdb
chore: missing Ciphers in removeAllDestFile
2020-05-21 23:09:53 +08:00
Bo-Yi Wu
2ff51f00ff
chore: support Fingerprint ( #114 )
2020-05-21 23:08:17 +08:00
Bo-Yi Wu
457861ab2a
chore(ssh): support Ciphers
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2020-05-04 10:27:02 +08:00
Bo-Yi Wu
bad565d475
update success message format.
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2020-02-27 09:53:36 +08:00
Bo-Yi Wu
177625c6e7
chore: support passphrase ( #107 )
...
* chore: support passphrase
2020-01-20 22:34:16 +08:00
Bo-Yi Wu
c85ca1ffd2
feat(tar): add Overwrite flag ( #102 )
...
* feat(tar): add Overwrite flag
* chore: remove
* chore: output
* chore: output
2019-09-28 16:59:01 +08:00
Ivo Nunes
933b45bc15
Add variable to set temporary tar upload path ( #100 )
2019-09-28 16:36:05 +08:00
Bo-Yi Wu
15344d67ae
fix strip-components
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2019-09-28 16:30:07 +08:00
Bo-Yi Wu
cf9e6f260d
chore: debug command
2019-09-28 14:52:31 +08:00
Bo-Yi Wu
cfa325a8c4
refactor: Add args command
2019-09-28 14:40:28 +08:00
Bo-Yi Wu
da44b071c4
chore: switch finished to struct{} for zero allocate ( #96 )
2019-03-30 07:26:53 +08:00
Bo-Yi Wu
15bd1a11e4
chore: change command timeout flag ( #92 )
...
* chore: change command timeout flag
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
* docs: update setting
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
* doc: update readme.
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2019-03-07 13:56:40 +08:00
Bo-Yi Wu
9cc27c6724
refactor: err check
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2019-03-06 11:05:15 +08:00
Bo-Yi Wu
fe8e5e3483
fix: remove check username exist. ( #91 )
2019-03-03 07:16:57 +08:00
Bo-Yi Wu
75d2ee1e10
fix missing exclude files ( #88 )
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2019-01-18 16:40:50 +08:00
Bo-Yi Wu
699675c8fa
add debug command. ( #87 )
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2019-01-18 16:06:22 +08:00
Bo-Yi Wu
d921289474
feat(ignore): support ignore list ( #86 )
...
fix #85
2019-01-18 15:12:36 +08:00
Bo-Yi Wu
4f7d31bd86
fix: missing tar config ( #83 )
2018-11-05 15:22:19 +08:00
natlibfi-arlehiko
d798a8cc75
Add TarExec parameter ( #82 )
...
Add TarExec parameter to provide an alternative tar-command (E.g. On old non-Linux systems it may be necessary to use gtar).
2018-11-05 15:11:00 +08:00
Bo-Yi Wu
7a88a784b2
refactor: hide domain info if only single domain in drone setting. ( #70 )
2017-05-15 17:16:21 +08:00
Bo-Yi Wu
13e681cc3b
refactor: wait group
2017-05-15 17:08:19 +08:00
Bo-Yi Wu
35c2f7a14c
feat: support strip components flag for tar command ( #65 )
...
Remove the specified number of leading path elements.
2017-04-30 23:18:22 +08:00
Bo-Yi Wu
8dba1e8e32
fix: quick fix. ( #63 )
2017-04-21 19:34:32 +08:00
Bo-Yi Wu
049263e847
refactor: show errors if set password and key at the same time ( #62 )
2017-04-21 16:38:43 +08:00
Bo-Yi Wu
88f5a95f3e
add scp error message ( #60 )
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2017-04-20 14:59:09 +08:00
Bo-Yi Wu
6aa6653378
update testing for remove single dest file. ( #55 )
...
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
2017-03-25 23:05:13 +08:00
Bo-Yi Wu
d326bfe5a4
feat: update easyssh-proxy to 1.1.1 ( #54 )
2017-03-25 22:46:03 +08:00
Bo-Yi Wu
2ebb608269
feat: add color ( #53 )
2017-03-25 20:35:10 +08:00
Bo-Yi Wu
f223505d46
add copy error handle. ( #52 )
2017-03-25 20:19:07 +08:00
Bo-Yi Wu
b1ca6d49a2
feat: remove temp file if encounter errors. ( #51 )
2017-03-25 17:23:03 +08:00
Bo-Yi Wu
72c123f390
feat: Support scp files from proxy command. ( #47 )
...
* feat: Support scp files from proxy command.
2017-03-06 14:43:52 +08:00