1
0
mirror of https://github.com/minio/mc.git synced 2025-11-13 12:22:45 +03:00

Implement 'mkdir'

This commit is contained in:
Harshavardhana
2015-01-20 15:45:25 -08:00
parent e13a35e7f8
commit 3e5f2322df
4 changed files with 68 additions and 3 deletions

View File

@@ -19,3 +19,4 @@ var configSecretErr = errors.New("secretkey is mandatory")
var missingAccessSecretErr = errors.New("You can configure your credentials by running `mc configure`")
var missingAccessErr = errors.New("Partial credentials found in the env, missing : AWS_ACCESS_KEY_ID")
var missingSecretErr = errors.New("Partial credentials found in the env, missing : AWS_SECRET_ACCESS_KEY")
var invalidBucketErr = errors.New("Invalid bucket name")