如何将dist文件夹的内容部署到服务器根目录?

How to deploy the content of dist folder to the server root?

我想将 dist 文件夹中的所有文件部署到服务器中我的文件夹之一。

我的 bitbucket 存储库名称是 "test-project-app"。

这是我必须将应用程序部署到服务器的脚本。

script: # The script below will deploy the application to the webserver.
  - apt-get update
  - apt-get install ncftp
  - ncftpput -v -u "$FTP_USERNAME" -p "$FTP_PASSWORD" -R $FTP_HOST $FTP_SITE_ROOT dist/*

这些是我的存储库变量

FTP_HOST: xxx.xxx.xxx.xxx
FTP_SITE_ROOT /public_html/test/

以上脚本自动在包含 dist 文件夹所有文件的测试文件夹中创建了文件夹 "test-project-app"。我想将文件夹的文件部署到测试根目录。

我该如何解决这个问题?

请帮忙。谢谢。

我以前遇到过同样的问题。你能改变吗

dist/*

进入

dist/**/*

希望这对你有用。