commands: Apply Golint rules
authordigitalcraftsman <digitalcraftsman@protonmail.com>
Thu, 24 Mar 2016 22:34:12 +0000 (23:34 +0100)
committerdigitalcraftsman <digitalcraftsman@protonmail.com>
Thu, 24 Mar 2016 22:34:12 +0000 (23:34 +0100)
commands/import_jekyll.go
commands/undraft.go

index 25228c9f2a203866fc2a971dc649239e6630dc33..26020b0f9d1ad1316d04dd61cd95e288f4109e95 100644 (file)
@@ -108,7 +108,7 @@ func importFromJekyll(cmd *cobra.Command, args []string) error {
                }
 
                relPath = filepath.ToSlash(relPath)
-               var draft bool = false
+               draft := false
 
                switch {
                case strings.HasPrefix(relPath, "_posts/"):
index c4bc2ffb06df9843aba421343c039739b4183f33..c9f2b24d72f2f63666b908d3f13cf360becfd06c 100644 (file)
@@ -10,6 +10,7 @@
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 // See the License for the specific language governing permissions and
 // limitations under the License.
+
 package commands
 
 import (
@@ -31,7 +32,7 @@ If the content's draft status is 'False', nothing is done.`,
        RunE: Undraft,
 }
 
-// Publish publishes the specified content by setting its draft status
+// Undraft publishes the specified content by setting its draft status
 // to false and setting its publish date to now. If the specified content is
 // not a draft, it will log an error.
 func Undraft(cmd *cobra.Command, args []string) error {