You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commands/apps.go
+73Lines changed: 73 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ import (
22
22
"net/http"
23
23
"net/url"
24
24
"os"
25
+
"strconv"
25
26
"strings"
26
27
"time"
27
28
@@ -113,6 +114,15 @@ This permanently deletes the app and all its associated deployments.`,
113
114
)
114
115
AddBoolFlag(deleteApp, doctl.ArgForce, doctl.ArgShortForce, false, "Delete the App without a confirmation prompt")
115
116
117
+
// output is global flag
118
+
detect:=CmdBuilder(cmd,
119
+
RunAppsDetect, "detect", "Detect functions", "Detect functions project and convert it into apps project by adding the AppSpec.", Writer, aliasOpt("dt"))
0 commit comments