rclone calls rclone with the given arguments, E.g. "version","--help". The test config file is automatically configured in RCLONE_CONFIG. The terminal output is returned as a string.
(args ...string)
| 78 | // The test config file is automatically configured in RCLONE_CONFIG. |
| 79 | // The terminal output is returned as a string. |
| 80 | func rclone(args ...string) (string, error) { |
| 81 | return rcloneEnv("", args...) |
| 82 | } |
| 83 | |
| 84 | // getEnvInitial returns the os environment variables cleaned for RCLONE_ vars (except RCLONE_TEST_MAIN). |
| 85 | func getEnvInitial() []string { |
no test coverage detected
searching dependent graphs…