Browse Source

avoid the user mistakingly using 'edit <draft>' instead of 'post <draft>'

Carlos Fenollosa 9 years ago
parent
commit
09fa553233
1 changed files with 1 additions and 0 deletions
  1. 1 0
      bb.sh

+ 1 - 0
bb.sh

@@ -266,6 +266,7 @@ get_html_file_content() {
 #	leave empty for default behavior (edit only text part and change name)
 edit() {
     # Original post timestamp
+    [[ ! -f "${1%%.*}.html" ]] && echo "Can't edit post "${1%%.*}.html", did you mean to use \"bb.sh post <draft_file>\"?" && exit -1
     edit_timestamp=$(LC_ALL=C date -r "${1%%.*}.html" +"%a, %d %b %Y %H:%M:%S %z" )
     touch_timestamp=$(LC_ALL=C date -r "${1%%.*}.html" +'%Y%m%d%H%M')
     tags_before=$(tags_in_post "${1%%.*}.html")