kubernauts / tk8

CLI to deploy Kubernetes with RKE, EKS or Kubeadm and deploy additional addons
Apache License 2.0
266 stars 48 forks source link

Use native go copy function instead of cp command #107

Closed ishantanu closed 5 years ago

ishantanu commented 5 years ago

Signed-off-by: Shantanu Deshpande shantanud106@gmail.com

This PR adds a copy function implemented in go.

The cp command which was previously used was causing issues with different operating systems. Linux users were facing issues while it was working on Mac. This PR removes the OS dependency so that the same code can work everywhere.

Fixes #106